@font-face {
  font-family: 'Almarai-Bold';
  src: url(../fonts/Almarai-Bold.ttf);
}

@font-face {
  font-family: 'Almarai-ExtraBold';
  src: url(../fonts/Almarai-ExtraBold.ttf);
}

@font-face {
  font-family: 'Almarai-Light';
  src: url(../fonts/Almarai-Light.ttf);
}

@font-face {
  font-family: 'Almarai';
  src: url(../fonts/Almarai-Regular.ttf);
}


* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Almarai';
}

a {
  text-decoration: none;
}

body {
  background-image: url(/Untitled-2.png);
  /* position: relative;
  background-image: repeating-linear-gradient(0deg, #5A433520 0px, 
  #5A433520 1px, 
  transparent 1px, transparent 21px),
  repeating-linear-gradient(90deg, #5A433520 0px,
   #5A433520 1px, transparent 1px, transparent 21px), 
   linear-gradient(90deg, hsl(0, 0%, 100%), hsl(0, 0%, 100%)) ;
  color: #5A4335; */
}

#section-one {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 20VH;
  user-select: none;
  margin-top: 50px;
}

#section-one .text {
  display: flex;
  direction: rtl;
  align-items: center;
  text-align: center;
  animation: top-title 2s 1;

}

@keyframes top-title {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

#section-one h1 {
  font-size: 80px;
  color: #5A4335;
  position: relative;
  font-family: 'Almarai-ExtraBold';
  margin-left: 10px;
}

#section-one h2 {
  font-size: 220px;
  color: #5A4335;
  position: relative;
  font-family: 'Almarai-Light';
}

#section-one h1::after {
  position: absolute;
  content: '';
  height: 20px;
  width: 100%;
  background-color: #00adf1;
  bottom: -35px;
  left: 0;
  border-radius: 20px;
}

#section-two {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow-x: hidden;
  margin-bottom: 130px;
}

#section-two .wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 20px 0px;
}

#section-two .wrap .col {
  width: 50%;
  padding: 20px;


}


#section-two .wrap .img {
  width: 50%;
  animation: top-img 2s 1;
  overflow-x: hidden;

}

#section-two .wrap .img img {
  max-width: 500px;
  min-width: 0px;
  box-shadow: #000000 0px 0px 10px inset;
  border-radius: 10px;
}

@media (max-width: 1100px) {
  #section-two {
    margin-bottom: 10px;
  }

  #section-two .wrap .img img {
    max-width: 100%;
    min-width: 100%;
  }

  #section-one h1 {
    font-size: 50px;
    color: #5A4335;
    position: relative;
    font-family: 'Almarai-ExtraBold';
    margin-left: 10px;
  }

  #section-one h2 {
    font-size: 170px;
    color: #5A4335;
    position: relative;
    font-family: 'Almarai-Light';
  }

  #section-one h1::after {
    position: absolute;
    content: '';
    height: 17px;
    width: 100%;
    background-color: #00adf1;
    bottom: -34px;
    left: 0;
    border-radius: 20px;
  }
}


#section-two .wrap .text {
  text-align: right;
  padding-right: 60px;
  animation: top-text 2s 1;
  overflow-x: hidden;
}

@keyframes top-text {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0%);
  }
}

@keyframes top-img {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0%);
  }
}

#section-two .wrap .text h2 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #5A4335;
  position: relative;
  padding-bottom: 5px;
  font-family: 'Almarai-bold';
}


#section-two .wrap .text h2::after {
  position: absolute;
  content: '';
  height: 8px;
  width: 20%;
  background-color: #00adf1;
  bottom: -15px;
  right: 0;
  border-radius: 20px;
  z-index: 100;
}

#section-two .wrap .text p {
  font-size: 20px;
  position: relative;
  line-height: 40px;
  text-align: right;
  color: #5A4335;
  padding: 20px;
  border: 3px solid #5A4335;
  border-right: 3px solid #ffffff00;
  border-left: 3px solid #ffffff00;
  border-bottom: 3px solid #ffffff00;
  border-radius: 00px;
  font-family: 'Almarai';
}

#section-two .wrap .text p::after {
  position: absolute;
  content: '';
  height: 15px;
  width: 24%;
  background-color: #ffffff00;
  right: -2%;
  top: -5px;
  border-radius: 0px;
}

@media (max-width: 1080px) {
  #section-two .wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

  }

  #section-two .wrap .col {
    width: 100%;
    padding: 20px;
  }

  #section-two .wrap .img img {
    max-width: 80%;
    min-width: 80%;

  }

  #section-two .wrap .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  #section-two .wrap .text h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #5A4335;
    position: relative;

  }

  #section-two .wrap .text h2::after {
    position: absolute;
    content: '';
    height: 8px;
    width: 40%;
    background-color: #00adf1;
    bottom: -15px;
    right: 30%;
    border-radius: 20px;
  }


  #section-two .wrap .text p {
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    color: #5A4335;
    width: 90%;
    border: 3px solid #5A4335;
    border-radius: 10px;

  }

  #section-two .wrap .text p::after {
    position: absolute;
    content: '';
    height: 15px;
    width: 24%;
    background-color: #fff;
    right: 38%;
    left: 38%;
    top: -5px;
  }
}


@media (max-width: 600px) {
  #section-two .wrap .img img {
    max-width: 100%;
    min-width: 100%;
  }

}

#section-three {
  direction: rtl;
  min-height: 10vh;
}

#section-three .box {
  width: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 50px 0;
}

#section-three .col {
  width: 50%;

}

#section-three .col-img img {
  width: 90%;

}

.vi-mi-box {
  margin-bottom: 20px;
}

.vi-mi-box h1 {
  text-align: right;
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 26px;
  color: #5A4335;
  font-size: 32px;
  color: #5A4335;
  padding-right: 20px;
  font-family: 'Almarai-bold';
  text-shadow: #00ADF1 0 0 50px;
}

.col-desc {
  width: 90%;
  display: flex;
  align-items: center;


}

.col-icon .fas {
  width: 90px;
  height: 90px;
  font-size: 50px;
  line-height: 80px;
  color: #1da1f2;
}

.vi-mi-box .fas::after {
  position: absolute;
  content: '';
  height: 6px;
  width: 50%;
  background-color: #5A4335;
  bottom: 5px;
  left: 25%;
  right: 25%;
  border-radius: 20px;
}

.col-text p {
  padding: 0 20px;
  text-align: right;
  width: 100%;
  font-size: 20px;
  color: #5A4335;
  line-height: 40px;
  font-family: 'Almarai';
}







@media (max-width: 1100px) {
  #section-three .col {
    width: 100%;

  }

  .vi-mi-box h1 {
    text-align: center;
  }

  .vi-mi-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .col-desc {
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 10px;

  }

  .vi-mi-box h1 {
    position: relative;
    padding-right: 0px;
    font-size: 32px;
    margin-bottom: 20px;
  }

  .vi-mi-box h1::after {
    position: absolute;
    content: '';
    height: 6px;
    width: 50%;
    background-color: #00adf1;
    bottom: -8px;
    left: 25%;
    border-radius: 20px;
  }

  .col-icon .fas {
    display: none;
  }

  .col-text p {
    padding: 0 20px;
    text-align: center;
    width: 100%;
    font-size: 20px;
    color: #5A4335;
  }

  .col-content {
    margin-top: 10px;
  }

  #section-three .col-img img {
    width: 90%;
    display: none;
  }
}


#value {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}


#value .headertext {
  color: #aca7a4;
  font-size: 64px;
  font-family: 'Almarai-bold';
  text-align: center;
  width: 155px;
  position: relative;

}

#value .headertext .bef {
  z-index: 1;
  direction: ltr;
  position: absolute;
  top: 0;
  left: -10px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 0.1px;
  -webkit-text-stroke-color: #5A4335;
}

#value .containers {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  padding-top: 50px;
}

#value .containers .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

}

#value .containers .wrap .box {
  width: 250px;
  height: 200px;
  text-align: center;
  padding: 10px;
  background-color: transparent;
  box-shadow: 5px 5px 10px #96867b;
  margin: 20px;
  position: relative;
  border-radius: 0px 0px 5px 5px;
  backdrop-filter: blur(2px);
  transition: 0.5s;
}

#value .containers .wrap .box:hover {
  backdrop-filter: blur(1px);
  box-shadow: 0px 0px 10px #96867b;
  border-radius: 5px 5px 5px 5px;
}

#value .containers .wrap .box::before {
  content: '';
  width: 100%;
  height: 5px;
  background-color: #5A4335;
  position: absolute;
  top: 0;
  right: 0;
  transition: 0.5s;
}

#value .containers .wrap .box:hover::before {
  background-color: #00ADF1;
  width: 50px;
  right: 100px;
}

#value .containers .wrap .box h2 {
  margin: 10px;
  margin-top: 15px;
  font-size: 24px;
  color: #5A4335;
  font-family: 'Almarai-bold';
  transition: 0.5s;

}

#value .containers .wrap .box:hover h2 {
  margin-top: 20px;
  color: #00ADF1;

}

#value .containers .wrap .box p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 27px;
  color: #5A4335;
  font-family: 'Almarai';
  transition: 0.5s;

}

#value .containers .wrap .box:hover p {
  color: #00ADF1;
  margin-top: 10px;

}


#customer {
  max-width: 100%;
  position: relative;
  overflow-x: hidden;
  margin-top: 60px;
}

#customer h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  color: #594134;
  width: 100%;
  position: relative;
  user-select: none;
  font-family: 'Almarai-Bold';
}

#customer h1 span {
  color: #00adf1;
  font-size: 40px;
  padding-right: 10px;
}

#customer h1+p {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: #594134;
  width: 100%;
  position: relative;
  margin: 5px 0px;
  user-select: none;
  margin-bottom: 20px;
  font-family: 'Almarai';
}

#customer .wrapper .box p {
  color: #594134;
  line-height: 40px;
  font-size: 20px;
  direction: rtl;
  font-family: 'Almarai';
}

#customer .wrapper {
  direction: ltr;
  width: 100%;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;

}

#customer .wrapper .box {
  width: 40%;
  padding: 30px;
  box-shadow: 0 0px 32px 0 rgb(89, 65, 52, 0.4);
  border-radius: 10px;
  transition: all 1s;
  min-height: 350px;
  backdrop-filter: blur(2px);
}

#customer .wrapper .box:hover {
  background: #ffffff30;
  box-shadow: 0 0px 5px 0 rgb(89, 65, 52, 0.4);
  border-radius: 10px;
  backdrop-filter: blur(1px);
}

#customer .wrapper .box i.quote {
  font-size: 25px;
  color: #00adf1;
  padding: 20px;
}

#customer .wrapper .box .content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
}

#customer .box .content .image {
  height: 90px;
  width: 90px;
  padding: 10px;
  background: #00adf1;
  border-radius: 50%;
  box-shadow: #594134 0px 0px 10px inset;
  border: 2PX solid #573f1c;
}

#customer .content .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 02px solid #594134;
}

#customer .box:hover .content .image img {
  border-color: #594134;
}

@media (max-width: 1045px) {
  #customer .wrapper .box {
    width: 100%;
    margin: 10px 0;
    margin-bottom: 60px;
  }
}

@media (max-width: 700px) {

  #customer .wrapper .box p {
    color: #594134;
    line-height: 25px;
    font-size: 16px;
    text-align: center;

  }
}

@media (max-width: 450px) {
  #customer h1 {
    font-size: 8vw;
  }

  #customer h1 span {
    font-size: 8vw;
  }

  #customer h1+p {
    font-size: 7vw;
  }

  #customer .wrapper .box i.quote {
    display: none;

  }

  #customer .wrapper .box p {
    color: #594134;
    line-height: 25px;
    font-size: 16px;
    text-align: center;

  }

  #customer .wrapper .box {

    padding: 10px;
  }

  #customer .wrapper .box .content {
    flex-wrap: wrap;
    flex-direction: column;
  }


}









#section4 {
  width: 100%;
  overflow-x: hidden;
  padding: 20px 0px;
  border-top: 2px solid #5A4335;
}

#section4 .wrap {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  direction: rtl;
}

#section4 .wrap .section4-text {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#section4 .wrap .section4-text h2 {
  font-size: 26px;
  color: #5A4335;
  padding: 0px 40px;
  line-height: 40px;
  font-family: 'Almarai';


}







.btn-place {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  margin: 0 auto;
}

#section4 .wrap .btn {
  border: 2px solid #5A4335;
  width: 300px;
  margin: 0 auto;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  background-color: #5A4335;
  cursor: point;
  transition: all 0.5s;
}

#section4 .wrap .btn a {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  width: 100%;
  padding: 10px 10px;
  line-height: 33px;

  font-family: 'Almarai-Bold';
}

#section4 .wrap .btn:hover {

  background-color: transparent;


}

#section4 .wrap .btn:hover a {

  color: #5A4335;

}

@media (max-width: 990px) {
  #section4 .wrap {
    flex-direction: column;
    align-items: center;
  }

  #section4 .wrap .section4-text {
    width: 90%;
    display: flex;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .btn-place {
    width: 100%;
  }

  #section4 .wrap .btn {
    width: 80%;
    cursor: pointer;


  }
}


#customer .wrapper .box .content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}

#customer .box .name {
  font-family: 'Almarai-extraBold';
  font-size: 18px;
  color: #5c5754;
  user-select: none;

}